var length // A nonzero-based integer specifying the number of elements in the array.
function concat(value) // Concatenates the elements specified in the parameters with the elements in my_array, and creates a new array.
function join(separator) // Converts the elements in an array to strings, inserts the specified separator between the elements, concatenates them, and returns the resulting string.
function pop() // Removes the last element from an array and returns the value of that element.
function push(value) // Adds one or more elements to the end of an array and returns the array's new length.
function splice(start, deleteCount, value) // Adds and removes elements from an array. This method modifies the array without making a copy.
function toString() // Returns a string value representing the elements in the specified Array object. Every element in the array, starting with index 0 and ending with index my_array.length-1, is converted to a concatenated string and separated by commas.
function unshift(value) // Adds one or more elements to the beginning of an array and returns the array's new length.
function reverse() // Reverses the array in place.
function shift() // Removes the first element from an array and returns that element.
function slice(start, end) // Extracts a slice or a substring of the array and returns it as a new array without modifying the original array.
function sort(compareFunction, option) // Sorts the elements in an array. Flash sorts according to ASCII (Unicode) values.
function sortOn(fieldName, option) // Sorts the elements in an array according to one or more fields in the array.